From a367f605b842ad0a71a63025da15ac62ed0364a5 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 21 Dec 2021 14:29:19 +0100 Subject: chore: add a breadcrumb component --- src/pages/thematique/[slug].tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/pages/thematique/[slug].tsx') diff --git a/src/pages/thematique/[slug].tsx b/src/pages/thematique/[slug].tsx index 2e7c346..51506e5 100644 --- a/src/pages/thematique/[slug].tsx +++ b/src/pages/thematique/[slug].tsx @@ -1,4 +1,4 @@ -import Layout from '@components/Layouts/Layout'; +import { getLayout } from '@components/Layouts/Layout'; import PostPreview from '@components/PostPreview/PostPreview'; import { t } from '@lingui/macro'; import { NextPageWithLayout } from '@ts/types/app'; @@ -6,7 +6,6 @@ import { ThematicProps } from '@ts/types/taxonomies'; import { loadTranslation } from '@utils/helpers/i18n'; import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next'; import { ParsedUrlQuery } from 'querystring'; -import { ReactElement } from 'react'; import styles from '@styles/pages/Thematic.module.scss'; import { getAllThematicsSlug, @@ -39,9 +38,7 @@ const Thematic: NextPageWithLayout = ({ thematic }) => { ); }; -Thematic.getLayout = function getLayout(page: ReactElement) { - return {page}; -}; +Thematic.getLayout = getLayout; interface PostParams extends ParsedUrlQuery { slug: string; @@ -56,9 +53,11 @@ export const getStaticProps: GetStaticProps = async ( ); const { slug } = context.params as PostParams; const thematic = await getThematicBySlug(slug); + const breadcrumbTitle = thematic.title; return { props: { + breadcrumbTitle, thematic, translation, }, -- cgit v1.2.3